home *** CD-ROM | disk | FTP | other *** search
- /* Copyright 1993 Michael B. Johnson
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any non-commercial
- * purpose and without fee is hereby granted, provided that the
- * above copyright notice appears in all copies. Michael B. Johnson
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * Permission to use, copy, modify or distribute this software
- * and its documentation for any commercial purpose must be
- * confirmed in writing with Michael B. Johnson. He can be
- * contacted at:
- * 20 Ames St. E15-023G
- * Cambridge, MA 02141
- * (617) 547 0563
- *
- */
-
-
- // these are simply the tag ids for a set of aspect ratios...
-
- #define WW_ASPECT_DONT_CARE 0
-
- // NTSC is 4:3
- #define WW_ASPECT_NTSC 1
-
- // Academy is 1.33:1
- #define WW_ASPECT_ACADEMY 1
-
- #define WW_ASPECT_SQUARE 3
- #define WW_ASPECT_CUSTOM 4
-
- // American Widescreen is 1.85:1
- #define WW_ASPECT_AMERICAN_WIDESCREEN 5
-
- // European Widescreen is 1.66:1
- #define WW_ASPECT_EUROPEAN_WIDESCREEN 6
-
- // VistaVision is 2.21:1
- #define WW_ASPECT_VISTA_VISION 7
-
-